home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutord.EXE
/
OP.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-02-15
|
159 b
|
14 lines
main()
{
int a=10, b=20, c;
c = a + b;
printf("c is %d\n",c);
/*c = a--b;
printf("c is %d\n",c);*/
c = a- -b;
printf("c is %d\n",c);
}